Inserts an item into the collection at the specified index.

Namespace:  C1.Data.DataSource
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
protected override void InsertItem(
	int index,
	T item
)
Visual Basic
Protected Overrides Sub InsertItem ( _
	index As Integer, _
	item As T _
)

Parameters

index
Type: System..::..Int32
The zero-based index at which item should be inserted.
item
Type: T
The object to insert.

See Also